home *** CD-ROM | disk | FTP | other *** search
/ Monkey Grafik & Sound / MonkeyAudio 06-1994.iso / grafik / dfcdemo / unpack.bat < prev   
DOS Batch File  |  1994-05-26  |  855b  |  32 lines

  1. @ECHO OFF
  2. break on
  3. ECHO *********************************************
  4. ECHO Bitte wählen Sie eine der folgenden Optionen:
  5. ECHO ---------------------------------------------
  6. ECHO "1" entpacken auf Festplatte C:\DFCDEMO
  7. ECHO ---------------------------------------------
  8. ECHO "2" entpacken auf Festplatte D:\DFCDEMO
  9. ECHO ---------------------------------------------
  10. ECHO "3" entpacken auf Festplatte E:\DFCDEMO
  11. ECHO ---------------------------------------------
  12. ECHO Mit STRG-C brechen Sie ab
  13. ECHO *********************************************
  14. Choice /N /C:123
  15. IF Errorlevel 3 goto inste
  16. If Errorlevel 2 goto instd
  17. If Errorlevel 1 goto instc
  18. :inste
  19. md e:\dfcdemo
  20. pkunzip -d *.zip e:\dfcdemo
  21. goto ende
  22. :instd
  23. md d:\dfcdemo
  24. pkunzip -d *.zip d:\dfcdemo
  25. goto ende
  26. :instc
  27. md c:\dfcdemo
  28. pkunzip -d *.zip c:\dfcdemo
  29. goto ende
  30. :ende
  31.  
  32.